home *** CD-ROM | disk | FTP | other *** search
/ Nautilus 1992 July / Nautilus-3-8 / Nautilus-3-8.bin / Tools & Utilities / Techy Stuff / Source ƒ / Filelist ƒ / Options.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-09-14  |  719 b   |  22 lines

  1. /*
  2.     FileList 1.4
  3.     "Options.h"
  4. */
  5.  
  6. typedef struct {                    /* Options file structure: */
  7.     long            version;        /* - version number */
  8.     long            heap;            /* - minimum heap size */
  9.     unsigned short    volumes;        /* - percentage of volumes */
  10.     unsigned short    files;            /* - percentage of files */
  11.     unsigned short    name;            /* - average name size */
  12.     short            date;            /* - date format */
  13.     Byte            stuffit;        /* - recognize StuffIt archives */
  14.     Byte            automatic;        /* - automatic volume mode */
  15.     Byte            compactor;        /* - recognize Compactor archives */
  16.     Byte            tabs;            /* - tabs or spaces for text */
  17.     Rect            vwindow;        /* - volume window */
  18.     Rect            fwindow;        /* - file window */
  19. } Parameter, *ParameterPtr, **ParameterHdl;
  20.  
  21. void DoOptions (short);
  22.